{% extends "base.html" %} {% block title %}Hearing #{{ hearing.id }} — Admin{% endblock %} {% block content %}

Hearing #{{ hearing.id }}

{{ hearing.hearing_type.replace('_',' ').title() }} · {{ hearing.scheduled_date }} at {{ hearing.scheduled_time }}

Hearing Details
Status: {{ hearing.status.title() }}
Judge: {{ hearing.judge_name or 'TBD' }}
Provider: {{ hearing.room_provider.title() }}
{% if hearing.zoom_password %}
Meeting Password: {{ hearing.zoom_password }}
{% endif %} {% if hearing.outcome_notes %}
Outcome Notes:
{{ hearing.outcome_notes }}
{% endif %}
{% if hearing.status in ('scheduled', 'in_progress') %}
Join Hearing Room
{% endif %}
Case
{% if case %}
Case #: {{ case.id }}
Category: {{ case.category or '—' }}
Status: {{ case.status.title() }}
{% if case.summary %}
Summary:
{{ case.summary }}
{% endif %}
{% else %}
Case record not found.
{% endif %} {% if hearing.status in ('scheduled', 'in_progress') %}
Adjourn & Reschedule
{% endif %}
Back to Court Management
{% endblock %}